HTMLify
app.js
Views: 5 | Author: cody
const container = document.querySelector(".container");
const unsplashURL = "https://source.unsplash.com/featured/";
const rows = 10;
for (let i = 0; i < rows * 3; i++) {
const img = document.createElement("img");
img.loading = "lazy";
img.src = `${unsplashURL}${getRandomSize()}`;
container.appendChild(img);
}
function getRandomSize() {
return `${getRandomNr()}x${getRandomNr()}`;
}
function getRandomNr() {
return Math.floor(Math.random() * 10) + 300;
}